    @font-face {
    font-family: "Aeonik";
    src: url("/digitalagencywebsite/assets/Aeonik.woff") format("woff");
    font-weight: 300; /* Light */
    font-style: normal;
}
   @font-face {
    font-family: "Quantum";
    src: url("/digitalagencywebsite/assets/quantfh.ttf") format("truetype");
    font-weight: 300; /* Light */
    font-style: normal;
}
:root {
  --primary-blue: #005e95;
  --primary-purple: #51168a;
  --accent-pink: #9306ac;
  --bg-dark: #00050A;
  --bg-light: #f5f5f7;
  --text-main: #ffffff;
  --text-muted: #a7b0c5;
  --radius-lg: 18px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.3);
      --card-bg-color: #292c31;
}

/* DEFAULT BODY */
body {
  font-family: "Aeonik", sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

/* 👉 LIGHT MODE OVERRIDES */
body.light-mode {
  --bg-dark: #ffffff;        /* use light background instead */
  --text-main: #111111;
  --text-muted: #4b5563;
  --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.12);
      --card-bg-color: #ffffff;
        --primary-purple: #51168a;
}

/* Example: any element using these vars will auto-switch */


/* Theme toggle button */
.theme-toggle {
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.4);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  text-decoration:none;
  transition: background .2s ease, color .2s ease, border .2s ease;
}

body.light-mode .theme-toggle {
     background: rgb(120 95 95 / 0%);
    color: #ffffff;
    border-color: rgb(255 255 255 / 12%);
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
     
    }

    body {
    font-family: "Aeonik", sans-serif;
      background: var(--bg-dark);
      color: var(--text-main);
      
    }
.container{
  max-width: 1200px;
  margin: 0 auto;
}
.announcement-bar {
	
    box-shadow: 18px 21px 81px 32px black;

  background: #000;
  color: #fff;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  width: 100%;
  top: 0;
  overflow: hidden;
  white-space: nowrap;
z-index: 8;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 20s linear infinite;

}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.main-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 30px; /* default when at very top (announcement visible) */
  z-index: 9999;
  transition: top .18s ease, transform .18s ease;
  will-change: transform, top;

}

/* when user scrolls a bit, pin header to the very top */
.main-header.scrolled {
  top: 0;
  background-color:#000;
}

/* hide on scroll uses transform so top transitions remain smooth */
.main-header.header-hidden {
  transform: translateY(-120%);
}

/* inner container for logo and menu */
.header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
      padding: 2px 10px;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
  padding:10px;
}

/* NAV */
.menu  a {
  /* margin-left: 25px; */
font-size: 15px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

/* LEFT SOCIAL BAR */
.left-social {
    position: absolute;
    z-index: 2;
    left: 0;
    height: 100%;
    width: 50px;
    padding:0 5px;
    background: transparent;
    border-right: 2px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    align-items: flex-start;
  
}

.left-social a {
     font-size: 16px;
    border: 2px solid #d1d1d1;
    color: #ffffff;
    padding: 10px 13px;
    border-radius: 100%;
    width: 100%;
    background: #000000;
        display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .desktop-menu {
    display: none;
  }
}
@media(max-width: 992px){
  .hamburger {
    display: block;
  }
}
.header-cta {
  display: block;
}
.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.myprimary_btn{
  padding: 12px 25px;
    border-radius: 50px;
    background: #ffffff00;
    color: #ffffff;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: background 0.3s;
}
/* Hide/Show Header on Scroll */
.main-header {
  transition: transform 0.4s ease;
  z-index: 99999999999;
}

.header-hidden {
  transform: translateY(-100%);
}


/* Desktop Dropdown */
.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  background: #fff;
  color: #000;
  padding: 10px 0;
}
.dropdown li {
  list-style: none;
}
.dropdown li a {
  display: block;
  padding: 8px 20px;
  color: #000;
}

/* MOBILE */
.hamburger {
  display: none;
  cursor: pointer;
  color: white;
  font-size: 25px;
}

/* Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 270px;
  height: 100%;
  /* background: #ffffff; */
  color: #000;
  transition: left 0.4s ease;
  padding: 20px;
      z-index: 99999999999999999999999999999999999999999;
    background-color: black;
}

.mobile-sidebar.open {
  left: 0;
	    overflow-y: auto;
}

.sidebar-menu li {
    padding: 14px 14px 14px 0;
  font-size: 16px;
  border-bottom: 1px solid #e5e5e5;
    color: rgb(255, 255, 255);
}
.submenu-panel ul li a{
  color:#fff;
  text-decoration: none;
}
.submenu-panel li {
         padding: 14px 14px 14px 0;
    font-size: 16px;
    border-bottom: 1px solid #e5e5e5;
    color: rgb(255, 255, 255);
    list-style: none;
}
.sidebar-menu li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.submenu-panel {
 position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    background: #000000;
       height: 110%;
    color: white;
    padding: 20px;
    transition: left 0.4s ease;
}
.submenu-link{
  text-decoration: none;
}
.submenu-link span{
      display: flex;
    justify-content: space-between;
	    align-items: center;
}
.submenu-panel.open {
  left: 0;
}

/* Back button */
.submenu-header {
  padding: 15px 0;
  font-size: 17px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
.sidebar-menu{
  list-style: none;
  padding: 0;
  margin: 0;
}
/* RESPONSIVE */
@media(max-width: 992px){
  .desktop-menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .header-cta {
  display: none;
}
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ========= MEGA DROPDOWN ========= */

.mega-parent {
  position: relative;
}

/* hide old simple dropdown if still present */
.mega-parent > .dropdown {
  display: none !important;
}

.mega-dropdown {
  position: absolute;
  left: 65%;
  top: 100%;
  transform: translateX(-50%) translateY(18px);
  min-width: 950px;
  background: #111318;
  border-radius: 24px;
  padding: 12px 12px 12px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 9999;
}

/* show on hover of parent */
.mega-parent:hover .mega-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0px);
}

/* inner flex row of cards */
.mega-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

/* base card */
.mega-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 12px 12px;
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-main);
  overflow: hidden;
  background: #181b22;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

/* gradient shines per card (similar to ref image) */
.mega-card-1 {
  background: radial-gradient(circle at top left,
      rgba(255, 79, 163, 0.45),
      rgba(24, 27, 34, 1));
}
.mega-card-2 {
  background: radial-gradient(circle at top left,
      rgba(0, 200, 255, 0.4),
      rgba(24, 27, 34, 1));
}
.mega-card-3 {
  background: radial-gradient(circle at top left,
      rgba(0, 200, 140, 0.45),
      rgba(24, 27, 34, 1));
}
.mega-card-4 {
  background: radial-gradient(circle at top left,
      rgba(81, 22, 138, 0.55),
      rgba(24, 27, 34, 1));
}

/* hover effect */
.mega-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.18);
}

/* tag pill */
.mega-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  margin-bottom: 10px;
}

/* title & text */
.mega-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mega-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 14px;
}

/* bottom CTA inside card */
.mega-cta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fdfdfd;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-pink);
  align-self: flex-start;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.45);
}

/* ========= RESPONSIVE: hide mega on tablet/mobile ========= */
@media (max-width: 992px) {
  .mega-dropdown {
    display: none !important;
  }
}
.has-dropdown:hover i {
  transform: rotate(180deg);
  transition: 0.3s;
}

   /* ============= BANNER WRAPPER ============= */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;              /* Full screen height */
      overflow: hidden;
    }

    /* ============= VIDEO STYLING ============= */
    .hero video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 101%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;          /* Important for responsive crop */
      z-index: -1;
    }

    /* Optional dark overlay for text readability */
    /* .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.75)
      );
      z-index: 0;
    } */

    /* ============= CONTENT ON TOP ============= */
    .hero-content {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 1.5rem;
    }

    .hero-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 700;
      margin-bottom: 0.75rem;
          max-width: 600px;
    }

    .hero-subtitle {
      font-size: clamp(1rem, 2vw, 1.2rem);
      max-width: 600px;
      margin-bottom: 1.5rem;
      opacity: 0.9;
    }

    .hero-btn {
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      border: none;
      background: #0bf2fa;
      color: #111;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .hero-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    /* ============= MOBILE TWEAKS ============= */
    @media (max-width: 768px) {
      .hero {
        height: 100vh;
      }
    }
    .about_section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      /* padding: 100px 10%; */
      align-items: center;
      gap: 10px;
    
    width: 100%;
    }
    .sec2-reverse::before {
          content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    /* background-image: url(/digitalagencywebsite/assets/spark.png); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
    filter: invert(1);
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/digitalagencywebsite/assets/spark.png'); 
  background-size: cover;     
  background-position: center; 
  background-repeat: no-repeat;
  opacity: 0.3;                 */
  /* z-index: -1;    */
     /* filter: invert(1);               */
}
body.light-mode .sec2-reverse::before {
   filter: invert(0);  
 /* make it more subtle on light mode */
}

    .left_side h2,.right_side h2{
font-size: clamp(2rem, 1.6rem + 1.8vw, 4rem);

font-weight: 300;
font-style: normal;
font-variant: normal;

line-height: clamp(1.25, 1.15 + 0.4vw, 1.45);


letter-spacing: calc(0px + (1px - 0px) * ((100vw - 320px) / (1440 - 320)));
word-spacing: calc(0px + (4px - 0px) * ((100vw - 320px) / (1440 - 320)));

text-align: left;
text-transform: none;
white-space: normal;

}
    .left_side {
          position: relative;
    z-index: 1;
      max-width: 70%;
    }

    /* .left_side h2 {
      font-size: 36px;
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 16px;
    } */

    .left_side p ,.right_side p{
    font-size: clamp(14px, 1.6vw, 18px);

      line-height: 1.8;
      color: var(--text-color);
      margin-bottom: 30px;
      text-align: left;
    }

    .about_actions {
      margin-top: 20px;
    }

    .primary_btn {
      font-size: clamp(14px, 1.6vw, 18px);
    box-sizing: border-box;
    margin: 0;
    background-color: var(--text-main)!important;
    color: var(--bg-dark)!important;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.18);
    transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
    display: flex;
    background: var(--primary-blue);
		width:max-content;
    }

    .primary_btn:hover {
          transform: translateY(-2px);
    opacity: .95;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.22);
    }

    /* ========== RIGHT SIDE (ROBOT AREA) ========== */
    .right_side {
      max-width: 100%;
      /* position: relative; */
      overflow: visible;
      flex: 1;
    }

    .robot_viewer {
      width: 100%;
      height: 550px;
      border-radius: 12px;
    }
.robot_viewerr {
      width: 100%;
      height: 400px;
      border-radius: 12px;
    }
    model-viewer {
      width: 100%;
      height: 100%;
      border-radius: 12px;
      display: block;
    }

    /* Scroll-triggered rotation effect */
    /* .robot_viewer model-viewer {
      width: 100%;
      height: 100%;
      border-radius: 12px;
      transition: transform 1s ease;
    } */

    /* ========== SCROLL ANIMATION ========== */
    /* .scroll-animation {
      transform: rotateY(0deg);
    } */

    /* ========== RESPONSIVE DESIGN ========== */
    @media (max-width: 768px) {
      .about_section {
        /* flex-direction: column; */
        text-align: center;
        padding: 20px 5%;
      }

      .left_side {
        max-width: 100%;
        margin-bottom: 30px;
      }

      .right_side {
        max-width: 100%;
      }

      .robot_viewer {
        height: 250px;
      }
       .robot_viewerr {
        height: 350px;
      }
    }
.panel {
  /* height: 100vh; */
  position: relative;
}

.panel1 {
  /* background: #111; */
}
/* Reverse layout for sec2 */
/* .sec2-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .sec2-reverse {
    flex-direction: column;
  }
} */
.panel1 h1 {
  color: white;
  padding: 40px;
}
.panel2 h2{
  color:var(--bg-dark) !important;
  padding: 40px;
      font-weight: 900!important;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
/* 📱 Mobile alignment fix */
@media (max-width: 768px) {
  .panel2 h2 {
    text-align: center;
    padding: 30px; /* optional: slightly reduce padding on mobile */
	  
  }
}

.panel2 {
background-repeat: no-repeat;
    background-position: top;
    /* background: var(--text-main); */
    background-image: url(/digitalagencywebsite/assets/cta03.jpg);
    background-size: cover;
}

/* Robot containers for GSAP Flip */
.robot-container {
  position: absolute;
  width: 300px;
  height: 300px;
  z-index: 100;
}

/* Start position (Section 1, right side) */
.start-pos {
  right: 0%;
  top: 20%;
}

/* End position (Section 2, left side) */
.end-pos {
 left: 0%;
  top: 20%;
}

/* Model-viewer size */
model-viewer {
  width: 100%;
  height: 100%;
}

/* Make panels support positioned children */
.panel {
  /* height: 100vh; */
  position: relative;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .robot-container {
    width: 250px;
    height: 250px;
    left: 50% !important;
    /* right: auto !important; */
    transform: translateX(-50%);
    /* top: 20%; */
  }
#sec2 .left_side h2 span{
	    place-content: center;

}
  .start-pos {
    top: 60%!important;
  }

  .end-pos {
    top: 15%!important;
  }

  .panel {
    height: auto;
    min-height: 100vh;
  }
    .final-pos {
    top: 20% !important;
    left: 50% !important;
  }
}

.scrolling-text {
  overflow: hidden;
  width: 100%;
  /* height: 100vh; */
  padding:10px 0;
  margin: 10px 0;
  display: flex;
  align-items: center;
 background: linear-gradient(
    90deg,
    var(--primary-blue) 0%,       /* start with primary blue */
    #2a4f8f 50%,                  /* mid-tone to soften the transition */
    var(--primary-purple) 100%     /* end with primary purple */
  );
}
.scrolling-text .rail {
  display: flex;
}
.scrolling-text .rail h4 {
  white-space: nowrap;
font-size: clamp(32px, 4.5vw, 55px);

  font-weight: 900;
  letter-spacing: ls(120);
  line-height: 1em;
  margin: 0 30px 0 0;
  color: #FFFFFF;
}
/* Final stop (Section 3) */
.final-pos {
  left: 50%;
  top: 25%;
  transform: translateX(-50%);
}

#sec3 .left_side{
      position: absolute;
    top: 40%;
    width: 100%;
    max-width: 100%!important;
    font-family: "Quantum", sans-serif;
    /* z-index: 9999; */
        right: 0;
    
}
#sec3 .left_side h2{
  font-size: clamp(28px, 8vw, 120px);
  line-height: 1.02;
  word-break: break-word;
  hyphens: auto;
  max-width: 98%;
  margin: 0 auto;
  padding: 0 10px;
      text-align: center;
}
#sec3 .left_side p{
  font-size: 24px;
  text-align: center;
  max-width: 800px;
  margin: 20px auto 0 auto;
      text-align: center;
}
@media (max-width: 768px) {
  /* ...existing code... */
  #sec3 .left_side{
    /* stop absolute positioning on small screens so content flows naturally */
    position: static;
    top: auto;
    right: auto;
    transform: none;
    /* padding: 40px 5%; */
  }

  #sec3 .left_side h2{
    /* tighter cap for mobile */
    font-size: clamp(24px, 10vw, 56px);
    text-align: center;
  }
}


.smoke-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
  flex-direction: column;
}

.smoke-bg {
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle, rgba(128,16,237,.5) 0%, rgba(0,0,0,.8) 80%);
  filter: blur(70px);
  animation: smokeSpread 9s infinite ease-in-out; */
  z-index: 1;
  transform-origin: center;
}

/* @keyframes smokeSpread {
  0% {
    opacity: .4;
    transform: scale(1) translateY(0);
  }
  50% {
    opacity: .7;
    transform: scale(1.3) translateY(-25px);
  }
  100% {
    opacity: .4;
    transform: scale(1) translateY(0);
  }
} */


/* ---------- Fog ---------- */
.fogwrapper {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-filter: blur(1px) grayscale(0.2) saturate(1.2) sepia(0.2);
  filter: blur(1px) grayscale(0.2) saturate(1.2) sepia(0.2);
}
#foglayer_01, #foglayer_02, #foglayer_03 {
  height: 100%;
  position: absolute;
  width: 200%;
}
#foglayer_01 .image01, #foglayer_01 .image02,
#foglayer_02 .image01, #foglayer_02 .image02,
#foglayer_03 .image01, #foglayer_03 .image02 {
  float: left;
  height: 100%;
  width: 50%;
}
#foglayer_01 {
  -webkit-animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 15s linear infinite;
  -moz-animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 15s linear infinite;
  animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 15s linear infinite;
}
#foglayer_02, #foglayer_03 {
  -webkit-animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 13s linear infinite;
  -moz-animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 13s linear infinite;
  animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 13s linear infinite;
}

/* ---------- Moving Fog ---------- */
/*
  'size: cover' || 'size: 100%'; results remain the same
  'attachment: scroll' can be added or removed; results remain the same
  'attachment: fixed' causing unexpected results in Chrome
  'repeat-x' || 'no-repeat'; results remain the same
*/ 
#foglayer_01 .image01, #foglayer_01 .image02 {
  background: url("https://raw.githubusercontent.com/danielstuart14/CSS_FOG_ANIMATION/master/fog1.png") center center/cover no-repeat transparent;
}
#foglayer_02 .image01, #foglayer_02 .image02,
#foglayer_03 .image01, #foglayer_03 .image02{
  background: url("https://raw.githubusercontent.com/danielstuart14/CSS_FOG_ANIMATION/master/fog2.png") center center/cover no-repeat transparent;
}

/* ---------- Keyframe Layer 1 ---------- */
@-webkit-keyframes foglayer_01_opacity {
  0% { opacity: .1; }
  22% { opacity: .5; }
  40% { opacity: .28; }
  58% { opacity: .4; }
  80% { opacity: .16; }
  100% { opacity: .1; }
}
@-moz-keyframes foglayer_01_opacity {
  0% { opacity: .1; }
  22% { opacity: .5; }
  40% { opacity: .28; }
  58% { opacity: .4; }
  80% { opacity: .16; }
  100% { opacity: .1; }
}
@-o-keyframes foglayer_01_opacity {
  0% { opacity: .1; }
  22% { opacity: .5; }
  40% { opacity: .28; }
  58% { opacity: .4; }
  80% { opacity: .16; }
  100% { opacity: .1; }
}
@keyframes foglayer_01_opacity {
  0% { opacity: .1; }
  22% { opacity: .5; }
  40% { opacity: .28; }
  58% { opacity: .4; }
  80% { opacity: .16; }
  100% { opacity: .1; }
}
/* ---------- Keyframe Layer 2 ---------- */
@-webkit-keyframes foglayer_02_opacity {
  0% { opacity: .5; }
  25% { opacity: .2; }
  50% { opacity: .1; }
  80% { opacity: .3; }
  100% { opacity: .5; }
}
@-moz-keyframes foglayer_02_opacity {
  0% { opacity: .5; }
  25% { opacity: .2; }
  50% { opacity: .1; }
  80% { opacity: .3; }
  100% { opacity: .5; }
}
@-o-keyframes foglayer_02_opacity {
  0% { opacity: .5; }
  25% { opacity: .2; }
  50% { opacity: .1; }
  80% { opacity: .3; }
  100% { opacity: .5; }
}
@keyframes foglayer_02_opacity {
  0% { opacity: .5; }
  25% { opacity: .2; }
  50% { opacity: .1; }
  80% { opacity: .3; }
  100% { opacity: .5; }
}
/* ---------- Keyframe Layer 3 ---------- */
@-webkit-keyframes foglayer_03_opacity {
  0% { opacity: .8 }
  27% { opacity: .2; }
  52% { opacity: .6; }
  68% { opacity: .3; }
  100% { opacity: .8; }
}
@-moz-keyframes foglayer_03_opacity {
  0% { opacity: .8 }
  27% { opacity: .2; }
  52% { opacity: .6; }
  68% { opacity: .3; }
  100% { opacity: .8; }
}
@-o-keyframes foglayer_03_opacity {
  0% { opacity: .8 }
  27% { opacity: .2; }
  52% { opacity: .6; }
  68% { opacity: .3; }
  100% { opacity: .8; }
}
@keyframes foglayer_03_opacity {
  0% { opacity: .8; }
  27% { opacity: .2; }
  52% { opacity: .6; }
  68% { opacity: .3; }
  100% { opacity: .8; }
}
/* ---------- Keyframe moveMe ---------- */
@-webkit-keyframes foglayer_moveme {
  0% { left: 0; }
  100% { left: -100%; }
}
@-moz-keyframes foglayer_moveme {
  0% { left: 0; }
  100% { left: -100%; }
}
@-o-keyframes foglayer_moveme {
  0% { left: 0; }
  100% { left: -100%; }
}
@keyframes foglayer_moveme {
  0% { left: 0; }
  100% { left: -100%; }
}

@media only screen
  and (min-width: 280px)
  and (max-width: 767px) {
    #foglayer_01 .image01, #foglayer_01 .image02,
    #foglayer_02 .image01, #foglayer_02 .image02,
    #foglayer_03 .image01, #foglayer_03 .image02 {
      width: 100%;
    }
  }
.smoke-section .main-logo {
  position: relative;
  z-index: 2;
    max-width: 50%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(81, 22, 138, 0.3));
}

/* Light mode smoke */
:root[data-theme="light"] .smoke-bg {
  background: radial-gradient(ellipse at center, rgba(81, 22, 138, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
}


/* ====== GRADIENT COLOR FOG TINT ====== */

/* Color overlay added on top of fog */
.smoke-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
      90deg,
      #00C8FF 0%,
      #0094FF 40%,
      #A200FF 100%
  ); */
  mix-blend-mode: screen; /* brighten fog with gradient color */
  opacity: 0.55;          /* adjust intensity */
  pointer-events: none;
  z-index: 3;
}

/* Make fog layers brighter & blend with the gradient */
#foglayer_01,
#foglayer_02,
#foglayer_03 {
  filter: brightness(1.4) contrast(1.1) saturate(1.8);
  mix-blend-mode: screen;       /* crucial for color blending */
  opacity: 0.6;                 /* adjust fog visibility */
}

/* Optional deeper glow behind fog */
.smoke-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at center,
      rgba(162, 0, 255, 0.25),
      rgba(0, 148, 255, 0.25),
      rgba(0, 200, 255, 0.25),
      transparent 70%
  );
  filter: blur(80px);
  opacity: 0.5;
  mix-blend-mode: lighten;
  z-index: 2;
}

.why-choose-us-headsection {
        display: flex;
      flex-wrap: wrap;
    justify-content: center;
      /* padding: 100px 10%; */
      align-items: center;
      gap: 10px;
    
    width: 100%;
}

.why-choose-us-headsection .left_side{
      position: absolute;
    top: 40%;
    width: 100%;
    max-width: 100%!important;
    font-family: "Quantum", sans-serif;
    /* z-index: 9999; */
        right: 0;
    
}

.why-choose-us-headsection .left_side h2{
  font-size: clamp(28px, 8vw, 120px);
  line-height: 1.02;
  word-break: break-word;
  hyphens: auto;
  max-width: 98%;
  margin: 0 auto;
  padding: 0 10px;
      text-align: center;
}
.why-choose-us-headsection .left_side p{
  font-size: 24px;
  text-align: center;
  max-width: 800px;
  margin: 20px auto 0 auto;
      text-align: center;
}
@media (max-width: 768px) {
  /* ...existing code... */
.why-choose-us-headsection .left_side{
    /* stop absolute positioning on small screens so content flows naturally */
    position: static;
    top: auto;
    right: auto;
    transform: none;
    /* padding: 40px 5%; */
  }

.why-choose-us-headsection .left_side h2{
    /* tighter cap for mobile */
    font-size: clamp(24px, 10vw, 56px);
    text-align: center;
  }
}
:root {
  /* Why Choose timeline palette (soft / light) */
  --why-bg: #f4f5fb;
  --why-card-bg: #ffffff;
  --why-border: rgba(15, 23, 42, 0.08);
  --why-line-start: #7dd3fc;  /* soft blue  */
  --why-line-mid:   #a5b4fc;  /* soft indigo */
  --why-line-end:   #f9a8ff;  /* soft pink   */
  --why-dot-border: #51168a;

  --why-title: #111827;
  --why-text: #4b5563;
}
/* OPTIONAL wrapper if you use one */
.whychoose-wrapper {
  padding: 60px 16px;
  background: transparent; /* ya var(--bg-dark) agar dark page hai */
}

/* Main timeline container */
.whychoosedetails{
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(125, 211, 252, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(249, 168, 255, 0.22), transparent 55%),
    var(--why-bg);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Center vertical line (lighter gradient) */
.whychoosedetails::before{
  content:"";
  position: absolute;
  left: 50%;
  top:0;
  width: 4px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    var(--why-line-start),
    var(--why-line-mid),
    var(--why-line-end)
  );
  border-radius: 999px;
  opacity: 0.9;
}

/* Cards */
.whychoosecard{
  width: 40%;
  padding: 18px 22px;
  text-align: left;
  border-radius: 18px;
  margin: 18px 0;
  position: relative;
  background: var(--why-card-bg);
  border: 1px solid var(--why-border);
  color: var(--why-title);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Hover – halka sa lift */
.whychoosecard:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
  border-color: rgba(79, 70, 229, 0.3);
}

/* Headings & text inside card */
.whychoosecard h3{
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--why-title);
}
.whychoosecard p{
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--why-text);
}

/* odd cards left */
.whychoosecard:nth-child(odd){
  margin-right: auto;
}

/* even cards right */
.whychoosecard:nth-child(even){
  margin-left: auto;
}

/* connecting dots */
.whychoosecard::before{
  content:"";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--why-card-bg);
  border: 3px solid var(--why-dot-border);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* LEFT cards */
.whychoosecard:nth-child(odd)::before{
  right: -104px;
}

/* RIGHT cards */
.whychoosecard:nth-child(even)::before{
  left: -104px;
}

/* horizontal lines (soft gradient) */
.whychoosecard::after{
  content:"";
  position: absolute;
  top: 50%;
  width: 90px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--why-line-start),
    var(--why-line-mid),
    var(--why-line-end)
  );
  transform: translateY(-50%);
  z-index: 1;
}

/* left card line */
.whychoosecard:nth-child(odd)::after{
  right: -90px;
}

/* right card line */
.whychoosecard:nth-child(even)::after{
  left: -90px;
}

/* ========= MOBILE ========= */
@media(max-width:700px){
  .whychoosedetails{
    padding: 24px 12px 24px 24px;
  }

  .whychoosedetails::before{
    left: 22px;
  }

  .whychoosecard{
    width: calc(100% - 40px);
    margin-left: 40px !important;
    margin-right: 0 !important;
  }

  .whychoosecard::before{
    left: -42px !important;
    right: auto !important;
  }

  .whychoosecard::after {
    left: -23px !important;
    right: auto !important;
    width: 23px;
  }

  .whychoosecard h3{
    font-size: 0.95rem;
  }
  .whychoosecard p{
    font-size: 0.86rem;
  }
}
/* services2section */
.left_side .subhead,.about_section .subhead {
      color: var(--text-muted); /* gray-400 */
    font-size: 18px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
  }

  .left_side .subhead,.about_section .subhead svg {
    margin-left: 12px;
    width: 24px;
    height: 24px;
    color: var(--text-muted); /* indigo-600 */
  }

/* Scroll-to-top button */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 26px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00C8FF, #0094FF, #A200FF);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  color: #ffffff;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 0 22px rgba(0, 200, 255, 0.4);
}

/* Hover effect */
.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(162, 0, 255, 0.6);
}

/* Show button */
.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
}

/* Light theme support */
[data-theme="light"] .scroll-top-btn {
  background: #ffffff;
  color: #00C8FF;
  border: 2px solid rgba(0, 200, 255, 0.4);
  box-shadow: 0 0 12px rgba(0, 140, 255, 0.3);
}

[data-theme="light"] .scroll-top-btn:hover {
  box-shadow: 0 0 16px rgba(162, 0, 255, 0.4);
}


.black-box {
  width: 100%;       /* poora width */
  height: 120px;     /* fixed height */
  background-color: black; /* black color */
}
/* ===== PRICING MODAL (DARK + LIGHT THEME) ===== */

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  padding: 16px;               /* mobile pe thoda breathing space */
}

.pricing-modal.is-open {
  display: flex;
}

.pricing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

/* Base dialog – DARK theme default */
.pricing-modal__dialog {
  position: relative;
  max-width: 640px;
  width: 100%;
  border-radius: 20px;
  padding: 24px 24px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 1;

  background: radial-gradient(circle at 0% 0%,
              rgba(0, 200, 255, 0.25),
              transparent 55%),
              radial-gradient(circle at 100% 120%,
              rgba(147, 6, 172, 0.35),
              #050816);
  color: #f5f5f5;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

/* Light theme override */
:root[data-theme="light"] .pricing-modal__dialog {
  background: #ffffff;
  color: #020617;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.pricing-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

/* Top text */
.pricing-modal__group {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 4px;
}

:root[data-theme="light"] .pricing-modal__group {
  color: #6b7280;
}

.pricing-modal__title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
}

.pricing-modal__price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-modal__price {
  font-size: 20px;
  font-weight: 600;
}

.pricing-modal__period {
  font-size: 13px;
  color: #9ca3af;
}

:root[data-theme="light"] .pricing-modal__period {
  color: #6b7280;
}

/* Features */
.pricing-modal__features {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 13px;
  color: #d1d5db;
}

:root[data-theme="light"] .pricing-modal__features {
  color: #4b5563;
}

/* Divider */
.pricing-modal__divider {
  border-color: rgba(148, 163, 184, 0.25);
  margin: 16px 0 14px;
}

/* Form title */
.pricing-modal__form-title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Fields */
.pm-field {
  margin-bottom: 10px;
}

.pm-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

:root[data-theme="light"] .pm-field label {
  color: #111827;
}

.pm-field--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 600px) {
  .pm-field--2col {
    grid-template-columns: 1fr;
  }
}

/* Inputs */
.pm-input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #1f2937;
  background: #020617;
  color: #f9fafb;
  padding: 8px 10px;
  font-size: 14px;
}

:root[data-theme="light"] .pm-input {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #111827;
}

.pm-input::placeholder {
  color: #6b7280;
}

/* Focus state */
.pm-input:focus {
  outline: none;
  border-color: var(--primary-blue, #2563eb);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
}

/* Submit button */
.pricing-modal__submit {
  margin-top: 8px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
font-family: inherit;
  background: linear-gradient(135deg, #00c8ff, #a200ff);
  color: #020617;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

:root[data-theme="light"] .pricing-modal__submit {
  color: #020617;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

.pricing-modal__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
}

.pricing-modal__submit:disabled {
  opacity: 0.6;
  cursor: default;
}

/* Alerts */
.pm-alert {
  margin-top: 6px;
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 6px;
}

.pm-alert.pm-alert--success {
  background: rgba(22, 163, 74, 0.15);
  color: #bbf7d0;
}

:root[data-theme="light"] .pm-alert.pm-alert--success {
  background: #dcfce7;
  color: #166534;
}

.pm-alert.pm-alert--error {
  background: rgba(220, 38, 38, 0.18);
  color: #fecaca;
}

:root[data-theme="light"] .pm-alert.pm-alert--error {
  background: #fee2e2;
  color: #b91c1c;
}

/* Extra small-screen tweak */
@media (max-width: 480px) {
  .pricing-modal__dialog {
    padding: 18px 16px 16px;
    border-radius: 16px;
  }

  .pricing-modal__title {
    font-size: 19px;
  }
}
/* Mobile Responsive */
@media (max-width: 576px) {
  .cta-card__title {
    font-size: 2.2rem !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }

  .cta-card__description {
    font-size: 1rem !important;
    text-align: center !important;
  }

  .cta-card__input {
    padding: 1.2rem 0.5rem !important;
    font-size: 1rem !important;
    text-align: center !important;
  }

  .cta-card__button {
    padding: 0.6rem !important;
  }
}
/* Mobile sidebar CTA Buttons */
.mobile-cta {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* padding: 0 20px 30px; */
}

.mobile-btn {
  width: 100%;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  background: var(--primary-purple);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  border: 2px solid transparent;
}

.mobile-btn:hover {
  background: #5a22ce;
  box-shadow: 0 4px 14px rgba(100, 0, 255, 0.3);
}

/* Outline version */
.mobile-btn.outline {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
}

.mobile-btn.outline:hover {
  background: var(--primary-purple);
  color: #fff;
}

/* Dark mode button */
.mobile-btn.secondary {
  background: #0f172a;
  border: 2px solid #6366f1;
}

.mobile-btn.secondary:hover {
  background: #1e293b;
}
@media (max-width: 767px) {
  .cta_ribbon {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
.cta-card__img-box .cta-card__img:nth-last-child(-n + 2) {
    display: none!important;
}
}
.btn-view{
background-color:var(--text-main)!important;
	color:var(--bg-dark)!important;
}
	  .imgbox{
	      max-width: 100%;
    margin: 10px;}
	  .imgbox img {
	  width:100%;}